home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Classes / SocketClasses / Chat / README < prev   
Encoding:
Text File  |  1992-03-15  |  759 b   |  23 lines

  1. This example provides a very simple chat server using
  2. the Socket Classes. Users can TELNET to it, and it asks
  3. them for their name. After that, whatever they type is
  4. sent to all the other users' screens, with their name
  5. prepended so everybody knows who said what.
  6.  
  7. This server doesn't provide any control options, and
  8. it might be a good idea to see if you can add a way to
  9. have the server send each chatter a prompt. You could
  10. also try to provide a way to send commands to the Guest
  11. or Chatserver objects while logged in as a chatter (for
  12. example, typing "/name newname" sets your name to
  13. "newname", or "/quit" ending your session, with "/"
  14. delimiting all commands).
  15.  
  16. Content:
  17.     chat.h
  18.     chat_main.[hm]
  19.     Chatserver.[hm]
  20.     Guest.[hm]
  21.     Makefile
  22.     README (this file)
  23.